home comics writing pictures archive about

MainWindowVb.xaml

Language: Extensible Application Markup Language
Last Modified: 2020-06-27 1:58:34 PM UTC
File Size: 1395 bytes
http://www.penguinstew.ca/example/randomorder/MainWindowVb.xaml
���<Windowx:Class=MainWindow
xmlns=http:schemasmicrosoftcomwinfx2006xamlpresentation
xmlns:x=http:schemasmicrosoftcomwinfx2006xaml
x:Name=window
Title=RandomOrderVBnetTestProgram
Width=435Height=350MinWidth=435
MinHeight=150Closing=Window_Closing
Icon=RandomOrderVb;componentImagesvbAppIconico>
<Grid>
<ListBoxName=numberListWidth=AutoHeight=Auto
Margin=15151550HorizontalAlignment=Stretch
VerticalAlignment=Stretch
ItemsSource={Binding}>
<LabelName=statusWidth=100Height=28
Margin=2200013HorizontalAlignment=Left
VerticalAlignment=Bottom
Content={BindingStatusContentElementName=window}>
<ProgressBarName=progressWidth=200Height=23
Margin=150015HorizontalAlignment=Left
VerticalAlignment=Bottom
Value={BindingProgressValueElementName=window}>
<ButtonName=generateButtonWidth=75Height=23
Margin=001515HorizontalAlignment=Right
VerticalAlignment=Bottom
Click=generateButton_ClickContent=Generate>
</Grid>
</Window>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27